-
Notifications
You must be signed in to change notification settings - Fork 2.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add fundrawtransaction RPC call #1553
Add fundrawtransaction RPC call #1553
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This registers the command for btcjson and rpcclient, so one can issue these commands, but it does not actually expose the command externally, and I wouldn't call this complete without adding that functionality.
Are you talking about this line? Line 824 in 0668071
That is necessary for the RPC client to call this method. You're right in that this is a client-side implementation of the RPC, not server-side. My use case is using the RPC client against a Bitcoin Core backend. If there's a better way of doing a client-only implementation I'm happy to change this, but I think this is the correct way of implementing a client-only RPC. |
0668071
to
5e73218
Compare
I was just referring to the fact that it was client only, and I guess more determining the scope of the PR, this is the correct way to implement client-only. Definitely put up an issue for server side because I think it's sort of a problem to have discrepancies in the supported commands for the client and server for too long. |
@torkelrogstad mind seeing if you can rebase to get the github actions to run? |
5e73218
to
efc3cdb
Compare
Rebased. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
OK
As mentioned in #1500